home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 May / Macworld (1998-05).dmg / Shareware World / Comms & Internet / ProTERM_1.2.5.Install / ProTERM Mac1.2.5 / Macros / Resident User 1203 < prev    next >
Encoding:
Text File  |  1997-10-08  |  5.7 KB  |  291 lines  |  [DIRC/PTM2]

  1. /**************************************
  2.  *                                    *
  3.  *  ProTERM/Mac Resident User Macros  *
  4.  *                                    *
  5.  *   Version 1203   Updated 10/2/97   *
  6.  *                                    *
  7.  **************************************/
  8. /*
  9.  Revision History:
  10.  
  11.   10/02/97 - Version 1203. Removal of F1-F12 macros to Resident User Custom.
  12.   03/01/97 - Approximate creation of 1202, based on 1201 file.
  13.   08/01/96 - Approximate creation of 1201, based on 110x file.
  14. */
  15.  
  16.  
  17. //
  18. // NOTE: Text between '/*' and '*/' and following '//' are comments.
  19. //
  20.  
  21. //
  22. // Special "link" code just in case file is executed directly
  23. //
  24. FUNC main()
  25. {
  26.  EXTERN(PREF_GET("mac1"),main(1));
  27.  RETURN;
  28. }
  29.  
  30.  
  31. /***********************************************************************/
  32. /*                   Start of Startup Macros                           */
  33. /***********************************************************************/
  34.  
  35. FUNC startup(STR file)
  36. {
  37.  
  38. //
  39. // Add startup macro variables after this comment
  40. //
  41.  
  42. //
  43. // Add startup macro code after this comment
  44. //
  45.  
  46.  UI_EQUIV("File:Save As…","M"); 
  47.  UI_EQUIV("Edit:Format Test","T");
  48.  UI_EQUIV("Edit:Macro Exec","/");
  49.  UI_EQUIV("Edit:Character Count",",");
  50.  UI_EQUIV("Edit:Convert:Paragraph Format","U")
  51.  UI_EQUIV("Edit:Convert:Smart Quotes","J")
  52.  UI_EQUIV("Edit:Convert:Reply Format","Y")
  53.  
  54. // leave this code unchanged
  55.  RESIDENT("",0,#KeyAccess+#LibAccess);
  56.  RETURN;
  57. }
  58.  
  59.  
  60. /***********************************************************************/
  61. /*                   Start of Keyboard Macros                          */
  62. /***********************************************************************/
  63.  
  64.  
  65. //
  66. // COMMAND+OPTION+K: Resize editor window to 80x24
  67. //
  68. FUNC ked_0928()
  69. {
  70.  WIN_SIZE(WIN_ACTIVE(0),80*6+19,24*12+8);
  71.  RETURN;
  72. }
  73.  
  74.  
  75. //
  76. // COMMAND+OPTION+F: Insert First Name into Editor
  77. //
  78. FUNC key_0903()
  79. {
  80.  UI_TYPE(first_name(GESTALT(name)));
  81.  RETURN;
  82. }
  83.  
  84.  
  85. //
  86. // COMMAND+OPTION+N: Insert Name (first+last) into Editor
  87. //
  88. FUNC key_092D()
  89. {
  90.  UI_TYPE(GESTALT(name));
  91.  RETURN;
  92. }
  93.  
  94. //
  95. // COMMAND+OPTION+O: Insert Name @ Org into Editor
  96. //
  97. FUNC key_091F()
  98. {
  99.  UI_TYPE(GESTALT(name)+" @ "+GESTALT(org));
  100.  RETURN;
  101. }
  102.  
  103. //
  104. // COMMAND+OPTION+Y: Auto Reply Format
  105. //
  106. FUNC ked_0910()
  107. {
  108.  UI_MENU("Edit:Convert:Paragraph Format");
  109.  UI_MENU("Edit:Convert:Reply Format");
  110.  UI_CLICK("Format");
  111.  RETURN;
  112.  
  113.  
  114. /***********************************************************************/
  115. /*                   Start of Library Macros                           */
  116. /***********************************************************************/
  117.  
  118.  
  119. //
  120. // Return First Name (from full name)
  121. //
  122. FUNC first_name(STR name)
  123. {
  124.  RETURN(STR_LEFT(name,STR_INDEX(" ",name)));
  125. }
  126.  
  127. //
  128. // zoom window back to user size
  129. //
  130. FUNC zoom_user()
  131.  WIN_ZOOM(WIN_ACTIVE(0),"-"));
  132.  RETURN;
  133. }
  134.  
  135. //
  136. // zoom window to default size
  137. //
  138. FUNC zoom_default()
  139.  WIN_ZOOM(WIN_ACTIVE(0),"+"));
  140.  RETURN;
  141. }
  142.  
  143. //
  144. // zoom window to minimum size
  145. //
  146. FUNC zoom_min()
  147.  WIN_ZOOM(WIN_ACTIVE(0),"<"));
  148.  RETURN;
  149. }
  150.  
  151. //
  152. // zoom window to maximum size
  153. //
  154. FUNC zoom_max()
  155.  WIN_ZOOM(WIN_ACTIVE(0),">"));
  156.  RETURN;
  157. }
  158.  
  159. //
  160. // zoom window to maximum vertical
  161. //
  162. FUNC zoom_vert()
  163.  WIN_ZOOM(WIN_ACTIVE(0),"{"));
  164.  RETURN;
  165. }
  166.  
  167. //
  168. // zoom window to maximum horizontal
  169. //
  170. FUNC zoom_horiz()
  171.  WIN_ZOOM(WIN_ACTIVE(0),"}"));
  172.  RETURN;
  173. }
  174.  
  175.  
  176. /***********************************************************************/
  177. /*                   Start of Event Macros                             */
  178. /***********************************************************************/
  179.  
  180.  
  181. //
  182. // Sample "connect event" macro
  183. //
  184. FUNC ev_conn(INT ses, STR term, STR name, INT numb, INT time)
  185. {
  186.  PRINTF("ev_conn()^m");
  187.  PRINTF("session = $%x^m",ses);
  188.  PRINTF("term = %s^m",term);
  189.  PRINTF("name = %s^m",name);
  190.  PRINTF("numb = %s^m",numb);
  191.  PRINTF("time = %D %T^m",time,time);
  192.  RETURN;
  193. }
  194.  
  195.  
  196. //
  197. // Sample "xfer event" macro
  198. //
  199. FUNC ev_xfer(INT ses, STR mode, STR proto, INT time, INT ticks, INT cur, INT max, STR path, STR name, INT len, INT mod, INT type, INT create, INT bytes, INT spent, INT cps, STR opts, INT errs, STR result)
  200. {
  201.  PRINTF("ev_xfer()^m");
  202.  PRINTF("session = $%x^m",ses);
  203.  PRINTF("mode = %s^m",mode);
  204.  PRINTF("proto = %s^m",proto);
  205.  PRINTF("time = %D %T^m",time,time);
  206.  PRINTF("ticks = %d^m",ticks);
  207.  PRINTF("cur = %d^m",cur);
  208.  PRINTF("max = %d^m",max);
  209.  PRINTF("file path = %s^m",path);
  210.  PRINTF("file name = %s^m",name);
  211.  PRINTF("file len = %d^m",len);
  212.  PRINTF("file modified = %D %T^m",mod,mod);
  213.  PRINTF("file type = '%P'^m",type);
  214.  PRINTF("file creator = '%P'^m",create);
  215.  PRINTF("bytes = %d^m",bytes);
  216.  PRINTF("spent = %S^m",spent);
  217.  PRINTF("cps = %d^m",cps);
  218.  PRINTF("opts = %s^m",opts);
  219.  PRINTF("errs = %d^m",errs);
  220.  PRINTF("result = %s^m",result);
  221.  RETURN;
  222. }
  223.  
  224.  
  225. /***********************************************************************/
  226. /*                  Example Macro Window                               */
  227. /***********************************************************************/
  228.  
  229.  
  230. //
  231. // COMMAND+OPTION+E: Open macro window
  232. //
  233. FUNC key_090E()
  234. {
  235.  LOCAL INT win;
  236.  
  237.  IF (WIN_FIND("Dot-Cmds")) {
  238.   RETURN;
  239.  }
  240.  
  241.  win = WIN_OPEN("Dot-Cmds", 1, -87, 83);
  242.  WIN_BUTTON(win, 1, "reply-start");
  243.  WIN_BUTTON(win, 2, "reply-end  ");
  244.  WIN_BUTTON(win, 3, "hanging    ");
  245.  WIN_BUTTON(win, 4, "flush      ");
  246.  
  247.  WIN_MACRO(win, 1, “edit_win('ºre(‘ > ’)º^m');”);
  248.  WIN_MACRO(win, 2, “edit_win('ºreº^m');”);
  249.  WIN_MACRO(win, 3, “edit_win('ºlm5ººpm-3º^m');”);
  250.  WIN_MACRO(win, 4, “edit_win('ºlmººpmº^m');”);
  251.  RETURN;
  252. }
  253.  
  254. //
  255. // callback function used by window routines
  256. //
  257. FUNC edit_win(STR cmd)
  258. {
  259.  IF (WIN_TYPE(WIN_ACTIVE(0)) == 'EDIT') {
  260.   UI_TYPE(cmd);
  261.  }
  262.  RETURN;
  263. }
  264.  
  265. FUNC ref_test(INT xxx, yyy)
  266. {
  267.  str_parse("567","%d",xxx);
  268.  str_parse("123","%d",yyy);
  269.  xxx = yyy + 3;
  270.  
  271.  
  272.  RETURN(xxx);
  273. }
  274.  
  275.  
  276.  
  277. FUNC ktr_0805()
  278. {
  279.  FN_SETPATH(0,"Sys:Internet:");
  280.  UI_MENU("File:Save As");
  281.  pr("testing");
  282.  end;
  283. }
  284.